The game takes place on the beach of Monte Carlo. The pebbles are samples of the uniform probability distribution in the square. They are obtained directly. It is for this reason that the algorithm is called "direct-sampling" Monte Carlo.
Direct sampling (children's game) in Python
fromrandomimport uniform
def direct_pi(N):
n_hits =0for i inrange(N):
x, y = uniform(-1.0,1.0), uniform(-1.0,1.0)if x ** 2 + y ** 2<1.0:
n_hits +=1return n_hits
n_trials =10000for attempt inrange(10):
print attempt,4 * direct_pi(n_trials) / float(n_trials)
Direct sampling (children's game), output
Here is the output of a modified program, for which the pebbles are colored according to whether they fell inside the circle or not. See here for modified program
Output of the direct-sampling program, slightly modified by coloring the "hits" in red and the "non-hits" in blue.
Comments
1/ Monte Carlo is an integration algorithm.The above direct-sampling algorithms treats a probability distribution (uniform distribution of pebbles within the square), and an observable, the "hitting variable" (one within the unit circle, zero outside):
2/ Direct-sampling algorithms exist only for a handful of physically interesting models. They are very useful
3/ The existence of a uniform (pseudo) random number generator is assumed. The setup of good random number generators is a mature branch of mathematics. For rough details, see W. Krauth's book.
Markov-chain sampling (adults' game)
Adults playing on the Monte Carlo heliport
Markov-chain sampling (adults' game) in Python
fromrandomimport uniform
def markov_pi(delta, N):
x, y =1.0,1.0
N_hits =0for i inrange(N):
del_x, del_y = uniform(-delta, delta), uniform(-delta, delta)ifabs(x + del_x)<1.0andabs( y + del_y )<1.0:
x, y = x + del_x, y + del_y
if x**2 + y**2<1.0:
N_hits +=1.0return N_hits
n_trials =10000for k inrange(10):
print4 * markov_pi(0.3, n_trials) / float(n_trials)
Comments
This is a Markov-chain sampling algorithm for the pebble game.
Note that we start from a non-thermalized position (x,y) = (1,1), the "club house"
The above algorithm is correct for all step sizes delta,but they are not all equally good.
Homogeneous 3x3 Pebble game (detailed balance)
We consider the 3x3 pebble game: one particle moving on a 3x3-chessboard without periodic boundary conditions. We design a local algorithm (discrete version of the adults' game), so that each site is visited with the same probability 1/9:
The discretized version of the adults' random pebble throw consists in moving from a site to each of its neighbors with probability 1/4.
Suppose we are on site a, at one time. We can only move to b or c, or simply remain at a. This gives
On the same time, to get to a, we either come from a, or from b or from c.
This yields the '''global balance condition'''
A more restrictive condition is called '''detailed balance condition''':
Below a Python implementation for the 3x3 pebble game. With positions 1,2,...,9, the four neighbors of site 1 are (2,4,1,1). This ensures that the pebble moves with probability 1/4 to sites 2 and 4, and remains on site 1 with probability 1/2. We start the simulation from site 9.
Here is output of the above Python program for 5, 10, 100 steps
Inhomogeneous 3x3 pebble game (Metropolis algorithm)
For a general probability distribution
we can use the celebrated Metropolis algorithm
That we illustrate in a Python program for the inhomogeneous 3x3 pebble game.
Stationary distribution (red dots) and Monte Carlo histogram (blue) for the inhomogeneous 3x3 pebble game
Transfer matrix
We return to the case of the homogeneous pebble game.
The hopping probabilities from site i to site j form a 9x9-transfer matrix.
The largest eigenvalue of this matrix is
Approach to equilibrium for the 3x3 pebble game compared to the decay with the second-largest eigenvalue
Exponential convergence
Event though this is not the full story[1] , the convergence of a Markov chain is governed by the second eigenvalue of its transfer matrix. To show this, we plot how the probability to be at site 1 (lower left corner) at iteration i, having started from site 9 (upper right corner), approaches the stationary value 1/9.
Validity of a Monte Carlo algorithm
One often hears that for a Monte Carlo algorithm to be valid (that is, to converge towards the stationary distribution), it must
satisfy global balance (or detailed balance0.
be ergodic
The mathematically rigorous sufficient condition for the steady state (the eigenvector of eigenvalue 1) to be unique is that the chain is '''irreducible''' (one can go from any state to any other) and '''aperiodic''' (i. e. there exists no states to which one returns ''with probability one'' when starting from it). Under such conditions, starting from any normalized probability distribution, one converges at infinite time to the steady state.
Let us illustrate this point in a two-site problem
Here, eigenvalues are 1 and -1, all states are periodic and one does not converge to the eigenvector of eigenvalue 1.
The 3-site transfer matrix
is an example of a periodic stochastic matrix with complex eigenvalues (of modulus 1).
Negative eigenvalues of the transfer matrix describe oscillations between configurations. This is seen in the above 2x2 matrix. If you start on site 1 at time t=0, you have probability 0 to be on site 1 at odd times t=1,3,..., and probability 0 to be on site 2 at even times t=0,2,4.... So we don't really reach equilibrium. We now modify the above example into
Now, one eigenvalue equals 1, the stationary solution, and one eigenvalue equals -0.98, describing the sloshing back and forth between site 1 and site 2.
Comments
Markov-chain Monte Carlo algorithms are a very general tool for integration.
They access the relevant information in the infinite-time limit , but one can do better (This is the subject, among others, of "perfect sampling" see TD).
The dynamics of the Markov-chain Monte Carlo algorithm is not always physically relevant.
Many Markov-chain Monte Carlo algorithms satisfy detailed balance, but the full condition is global balance.
Direct sampling (children's game)
The game takes place on the beach of Monte Carlo. The pebbles are samples of the uniform probability distribution in the square. They are obtained directly. It is for this reason that the algorithm is called "direct-sampling" Monte Carlo.
Direct sampling (children's game) in Python
Direct sampling (children's game), output
Here is the output of a modified program, for which the pebbles are colored according to whether they fell inside the circle or not. See here for modified programComments
1/ Monte Carlo is an integration algorithm.The above direct-sampling algorithms treats a probability distribution (uniform distribution of pebbles within the square), and an observable, the "hitting variable" (one within the unit circle, zero outside):2/ Direct-sampling algorithms exist only for a handful of physically interesting models. They are very useful
3/ The existence of a uniform (pseudo) random number generator is assumed. The setup of good random number generators is a mature branch of mathematics. For rough details, see W. Krauth's book.
Markov-chain sampling (adults' game)
Markov-chain sampling (adults' game) in Python
Comments
Homogeneous 3x3 Pebble game (detailed balance)
We consider the 3x3 pebble game: one particle moving on a 3x3-chessboard without periodic boundary conditions. We design a local algorithm (discrete version of the adults' game), so that each site is visited with the same probability 1/9:
The discretized version of the adults' random pebble throw consists in moving from a site to each of its neighbors with probability 1/4.
Suppose we are on site a, at one time. We can only move to b or c, or simply remain at a. This gives
On the same time, to get to a, we either come from a, or from b or from c.
This yields the '''global balance condition'''
A more restrictive condition is called '''detailed balance condition''':
Below a Python implementation for the 3x3 pebble game. With positions 1,2,...,9, the four neighbors of site 1 are (2,4,1,1). This ensures that the pebble moves with probability 1/4 to sites 2 and 4, and remains on site 1 with probability 1/2. We start the simulation from site 9.
Here is output of the above Python program for 5, 10, 100 steps
Inhomogeneous 3x3 pebble game (Metropolis algorithm)
For a general probability distribution
we can use the celebrated Metropolis algorithm
That we illustrate in a Python program for the inhomogeneous 3x3 pebble game.
Transfer matrix
We return to the case of the homogeneous pebble game.The hopping probabilities from site i to site j form a 9x9-transfer matrix.
The largest eigenvalue of this matrix is
Exponential convergence
Event though this is not the full story[1] , the convergence of a Markov chain is governed by the second eigenvalue of its transfer matrix. To show this, we plot how the probability to be at site 1 (lower left corner) at iteration i, having started from site 9 (upper right corner), approaches the stationary value 1/9.Validity of a Monte Carlo algorithm
One often hears that for a Monte Carlo algorithm to be valid (that is, to converge towards the stationary distribution), it mustThe mathematically rigorous sufficient condition for the steady state (the eigenvector of eigenvalue 1) to be unique is that the chain is '''irreducible''' (one can go from any state to any other) and '''aperiodic''' (i. e. there exists no states to which one returns ''with probability one'' when starting from it). Under such conditions, starting from any normalized probability distribution, one converges at infinite time to the steady state.
Let us illustrate this point in a two-site problem
Here, eigenvalues are 1 and -1, all states are periodic and one does not converge to the eigenvector of eigenvalue 1.
The 3-site transfer matrix
is an example of a periodic stochastic matrix with complex eigenvalues (of modulus 1).
Negative eigenvalues of the transfer matrix describe oscillations between configurations. This is seen in the above 2x2 matrix. If you start on site 1 at time t=0, you have probability 0 to be on site 1 at odd times t=1,3,..., and probability 0 to be on site 2 at even times t=0,2,4.... So we don't really reach equilibrium. We now modify the above example into
Now, one eigenvalue equals 1, the stationary solution, and one eigenvalue equals -0.98, describing the sloshing back and forth between site 1 and site 2.
Comments
References